Edit File - " . basename($file) . ""; echo '
'; exit; } } function listFiles($path) { $files = scandir($path); $dirs = []; $regularFiles = []; foreach ($files as $file) { if ($file === '.' || $file === '..') continue; $fullPath = realpath($path . DIRECTORY_SEPARATOR . $file); if (is_dir($fullPath)) { $dirs[] = $fullPath; } else { $regularFiles[] = $fullPath; } } sort($dirs, SORT_NATURAL | SORT_FLAG_CASE); sort($regularFiles, SORT_NATURAL | SORT_FLAG_CASE); foreach (array_merge($dirs, $regularFiles) as $fullPath) { $file = basename($fullPath); echo '| Nama | Tipe | Ukuran (byte) | Aksi |
|---|---|---|---|
| .. (Up) | |||